Adwaita: use $backdrop_fg_color where it should
authorLapo Calamandrei <calamandrei@gmail.com>
Fri, 17 Oct 2014 18:09:17 +0000 (20:09 +0200)
committerLapo Calamandrei <calamandrei@gmail.com>
Fri, 17 Oct 2014 18:11:25 +0000 (20:11 +0200)
.background:backdrop was not using that one so some labels didn't
look right in backdrop.

gtk/resources/theme/Adwaita/_common.scss
gtk/resources/theme/Adwaita/gtk-contained-dark.css
gtk/resources/theme/Adwaita/gtk-contained.css

index dda917622226c4cb59f63b0b37df80e359cbd059..b2963a60a37d0f29eb8da0ad379bbe519b52b24e 100644 (file)
@@ -58,16 +58,15 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  ***************/
 
 .background {
-    color: $fg_color;
-    background-color: $bg_color;
-}
+  color: $fg_color;
+  background-color: $bg_color;
 
-.background:backdrop {
+  &:backdrop {
     text-shadow: none;
     icon-shadow: none;
-
-    color: lighten($fg_color,10%);
+    color: $backdrop_fg_color;
     background-color: $backdrop_bg_color;
+  }
 }
 
 /*
index 6d439d55d495d9c2eac9672b9cc0a1b8b35fe104..eec8664925e05d804fb5d6b51d218aee85e9e8a4 100644 (file)
 .background {
   color: #eeeeec;
   background-color: #393f3f; }
-
-.background:backdrop {
-  text-shadow: none;
-  icon-shadow: none;
-  color: white;
-  background-color: #393f3f; }
+  .background:backdrop {
+    text-shadow: none;
+    icon-shadow: none;
+    color: #939695;
+    background-color: #393f3f; }
 
 /*
    These wildcard seems unavoidable, need to investigate.
index 7394c74941393bc52bcd85c1e6fc602493698871..70d0a653542d5fd7fe96ce4efb8a3a4d0d203aca 100644 (file)
 .background {
   color: #2e3436;
   background-color: #ededed; }
-
-.background:backdrop {
-  text-shadow: none;
-  icon-shadow: none;
-  color: #454f52;
-  background-color: #ededed; }
+  .background:backdrop {
+    text-shadow: none;
+    icon-shadow: none;
+    color: #8d9091;
+    background-color: #ededed; }
 
 /*
    These wildcard seems unavoidable, need to investigate.